home *** CD-ROM | disk | FTP | other *** search
/ Motor Sport Digital Archive Collection 1960s / Motor Sport Digital Archive Collection 1960s.iso / main.swf / scripts / mx / containers / TitleWindow.as < prev    next >
Encoding:
Text File  |  2008-05-21  |  932 b   |  38 lines

  1. package mx.containers
  2. {
  3.    import mx.core.mx_internal;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public class TitleWindow extends Panel
  8.    {
  9.       mx_internal static var createAccessibilityImplementation:Function;
  10.       
  11.       mx_internal static const VERSION:String = "2.0.1.0";
  12.       
  13.       public function TitleWindow()
  14.       {
  15.          super();
  16.       }
  17.       
  18.       public function get showCloseButton() : Boolean
  19.       {
  20.          return mx_internal::_showCloseButton;
  21.       }
  22.       
  23.       public function set showCloseButton(param1:Boolean) : void
  24.       {
  25.          mx_internal::_showCloseButton = param1;
  26.       }
  27.       
  28.       override protected function initializeAccessibility() : void
  29.       {
  30.          if(TitleWindow.mx_internal::createAccessibilityImplementation != null)
  31.          {
  32.             TitleWindow.mx_internal::createAccessibilityImplementation(this);
  33.          }
  34.       }
  35.    }
  36. }
  37.  
  38.